home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 298_01 / demo.dat < prev    next >
Text File  |  1987-03-01  |  2KB  |  79 lines

  1.  
  2.  
  3.             Welcome to PC-Curses! 
  4.  
  5.    A PC/MS-DOS Version of the Unix Curses Library 
  6.  
  7.         (C) Copyright 1987 Jeffrey S. Dean
  8.                All Rights Reserved
  9.  
  10.  
  11.  
  12. This is a simple demonstration of the curses program
  13. at work.  While only a few features are demonstrated
  14. here, you can get an idea of what the library can do.
  15. The source code is included, so you can also see how
  16. the demo is done.
  17.  
  18.  
  19.  
  20. In this demo, you can use the following commands:
  21.     <CR>    next window (exit after last)
  22.     <BKSP>    previous window
  23.     ^B    toggle between bios and direct update
  24.     ^C    abort this demo
  25.     ^G    beep and flash the screen
  26.     ^L    redraw the screen
  27.     ^W    update all windows at once
  28.  
  29.  
  30. Each one of the boxes on the screen is a separate
  31. window.  Text can be added to and deleted from
  32. windows.  Text attributes can be set; attributes
  33. currently supported are:
  34.  
  35.     blink, bold, reverse, and underline.
  36.  
  37.  
  38.  
  39. Curses works asynchronously; you can make as many
  40. changes as you want to a window, but the screen is not
  41. actually updated until you call the wrefresh()
  42. function.  This allows you to make many changes before
  43. writing anything.  The wrefresh function only makes
  44. changes on the screen that are necessary, thus
  45. avoiding writing unnecessary characters.
  46.  
  47.  
  48.  
  49. PC Curses is designed for compatibility.  Because
  50. of its closeness to Unix curses, code can be easily
  51. transported between MS-DOS and Unix systems.
  52. Because it uses BIOS screen updates (by default),
  53. it will work on a wide range of MS-DOS systems.
  54.  
  55.  
  56.  
  57. Please read the accompanying documentation for
  58. licensing information on this package.  While PC
  59. Curses is distributed as shareware, it is not public
  60. domain software; the software is copyrighted, and all
  61. uses must conform to the restrictions specified in the
  62. documentation.  Depending upon how you use the library,
  63. registration is either encouraged or required.
  64.  
  65.  
  66.  
  67. If you develop any demonstration programs, feel free
  68. to send them in; it would be nice to have more programs
  69. included with the PC Curses distribution!
  70.  
  71.  
  72.          For more information, please contact:
  73.  
  74. Jeff Dean            {parcvax,hplabs}!cdp!jeff
  75. 710 Chimalus            jeff@ads.arpa
  76. Palo Alto, CA  94306
  77. (415) 852 1225
  78.  
  79.          Thank you for using PC-Curses!